home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Communication / NewsBase / Source / common.subproj / IKeyedObject.h < prev    next >
Text File  |  1993-01-12  |  144b  |  13 lines

  1. #import <objc/Object.h>
  2.  
  3. @interface IKeyedObject:Object
  4. {
  5.     const char *key;
  6. }
  7.  
  8. - initWithKey:(const char *)aKey;
  9.  
  10. - (const char *)key;
  11.  
  12. @end
  13.